From 50e556be56bcb1f321627e88055a42366484db6c Mon Sep 17 00:00:00 2001 From: "smh22@tempest.cl.cam.ac.uk" Date: Wed, 28 Jul 2004 11:24:37 +0000 Subject: [PATCH] bitkeeper revision 1.1108.23.10 (41078cf5vf2z71barbrPnZ5i-BsO6w) Wizard.py, CreateDomain.py: fixed typo Wizard.py: Rename: tools/python/xen/sv/Wizzard.py -> tools/python/xen/sv/Wizard.py --- .rootkeys | 2 +- tools/python/xen/sv/CreateDomain.py | 8 ++++---- tools/python/xen/sv/{Wizzard.py => Wizard.py} | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) rename tools/python/xen/sv/{Wizzard.py => Wizard.py} (98%) diff --git a/.rootkeys b/.rootkeys index d09ef0e183..25b83dff0b 100644 --- a/.rootkeys +++ b/.rootkeys @@ -379,7 +379,7 @@ 40fcefb2vnfDbl4w_yCTedROPuqs0g tools/python/xen/sv/Main.py 40fcefb24h-04WaHag-Tg4nxWPhTig tools/python/xen/sv/NodeInfo.py 40fcefb2Sif__6AqrANeBQZZfvP-6w tools/python/xen/sv/TabView.py -41052eb8UrgtUkuJPg7oY1tutVQHsg tools/python/xen/sv/Wizzard.py +41052eb8UrgtUkuJPg7oY1tutVQHsg tools/python/xen/sv/Wizard.py 40fcefb2DqteqCCZYDCvvh4Q5jBd0w tools/python/xen/sv/__init__.py 40fcefb4rnaZNjqsBu7A5V2rlLyqRw tools/python/xen/sv/util.py 40d8915cyoVA0hJxiBFNymL7YvDaRg tools/python/xen/util/Brctl.py diff --git a/tools/python/xen/sv/CreateDomain.py b/tools/python/xen/sv/CreateDomain.py index 13c45d8622..512c6c60ae 100644 --- a/tools/python/xen/sv/CreateDomain.py +++ b/tools/python/xen/sv/CreateDomain.py @@ -1,6 +1,6 @@ -from xen.sv.Wizzard import Wizzard, Sheet +from xen.sv.Wizard import Wizard, Sheet -class CreateDomain( Wizzard ): +class CreateDomain( Wizard ): def __init__( self, urlWriter ): sheets = { 0: CreatePage0, @@ -8,7 +8,7 @@ class CreateDomain( Wizzard ): 2: CreatePage2, 3: CreatePage3 } - Wizzard.__init__( self, urlWriter, "Create Domain Wizzard", sheets ) + Wizard.__init__( self, urlWriter, "Create Domain Wizard", sheets ) class CreatePage0( Sheet ): @@ -40,4 +40,4 @@ class CreatePage3( Sheet ): feilds = [( 'name', 'Name')] - Sheet.__init__( self, urlWriter, feilds, "Create New Domain - 4" ) \ No newline at end of file + Sheet.__init__( self, urlWriter, feilds, "Create New Domain - 4" ) diff --git a/tools/python/xen/sv/Wizzard.py b/tools/python/xen/sv/Wizard.py similarity index 98% rename from tools/python/xen/sv/Wizzard.py rename to tools/python/xen/sv/Wizard.py index 0f506d03b8..74911426d4 100755 --- a/tools/python/xen/sv/Wizzard.py +++ b/tools/python/xen/sv/Wizard.py @@ -2,7 +2,7 @@ from xen.sv.util import * from xen.sv.HTMLBase import HTMLBase from xen.xend import sxp -class Wizzard( HTMLBase ): +class Wizard( HTMLBase ): def __init__( self, urlWriter, title, sheets ): HTMLBase.__init__( self ) -- 2.30.2